home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / avril20 / av.c < prev    next >
C/C++ Source or Header  |  1995-04-05  |  310b  |  17 lines

  1. /* Simple demo of AVRIL */
  2.  
  3. /* Written by Bernie Rodhl, April 1994 */
  4.  
  5. #include "avril.h"
  6. #include <stdlib.h>  /* for getenv() */
  7.  
  8. #include "avrildrv.h"
  9.  
  10. void main(int argc, char *argv[])
  11.     {
  12.     vrl_SystemStartup();
  13.     vrl_ReadCFGfile(NULL);
  14.     vrl_SystemCommandLine(argc, argv);
  15.     vrl_SystemRun();
  16.     }
  17.